home *** CD-ROM | disk | FTP | other *** search
/ PC Format 8 (5.25") / PC Format - Issue 8 May 1992 - Disk 2.ima / PCF.BAT < prev    next >
DOS Batch File  |  1994-08-29  |  2KB  |  88 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. cls
  6. echo PC Format Coverdisk
  7. echo The Modern Guide To Personal Leisure Computing
  8. Echo ------------------------------------------------------------------
  9. echo Please press the key corresponding to the program that you wish
  10. echo to install.
  11. echo                                       TbScanX................[V]
  12. echo                                       Clip art...............[C]
  13. echo                                       Exit to DOS............[X]
  14. getkey cvx
  15. if errorlevel 3 goto quit
  16. if errorlevel 2 goto virus
  17. if errorlevel 1 goto clip
  18.  
  19. :virus
  20. cls
  21. echo Please indicate the drive to which you want the virus information
  22. echo files saved.
  23. echo                                       Drive A:...............[A]
  24. echo                                       Drive B:...............[B]
  25. echo                                       Drive C:\UTILS.........[C]
  26. echo                                       Return to main menu....[M]
  27.  
  28. getkey abcm
  29. if errorlevel 4 goto start
  30. if errorlevel 3 goto cin
  31. if errorlevel 2 goto bin
  32. if errorlevel 1 goto ain
  33.  
  34. :cin
  35. md c:\utils
  36. copy virussig.exe c:\utils
  37. goto start
  38.  
  39. :bin
  40. copy virussig.exe b:
  41. goto start
  42.  
  43. :ain
  44. copy virussig.exe a:
  45.  
  46. :clip
  47. cls
  48. echo Please indicate the drive to which you want the clip art PCX 
  49. echo files saved.
  50. echo                                       Drive A:...............[A]
  51. echo                                       Drive B:...............[B]
  52. echo                                       Drive C:\CLIP..........[C]
  53. echo                                       Return to main menu....[M]
  54.  
  55. getkey abcm
  56. if errorlevel 4 goto start
  57. if errorlevel 3 goto cin1
  58. if errorlevel 2 goto bin1
  59. if errorlevel 1 goto ain1
  60.  
  61. :cin1
  62. md c:\clip
  63. copy clip.exe c:\clip
  64. goto start
  65.  
  66. :bin1
  67. copy clip.exe b:
  68. goto start
  69.  
  70. :ain1
  71. copy clip.exe a:
  72.  
  73. :quit
  74. cls
  75. echo Thank you for using the PC Format coverdisk. I hope you enjoyed
  76. echo the programs on it. If you have any comments on or suggestions 
  77. echo about the coverdisk, then I would like to hear from you. Write to:
  78. echo                                      Jason Saunders
  79. echo                                      PC Format May disk
  80. echo                                      Future Publishing
  81. echo                                      30 Monmouth Street
  82. echo                                      Bath
  83. echo                                      Avon
  84. echo                                      BA1 2BW
  85. cd..
  86. pause
  87.  
  88.